home comics writing pictures archive about

IWindowViewModel.cs

Language: C#
Last Modified: 2020-06-27 1:58:36 PM UTC
File Size: 1481 bytes
http://www.penguinstew.ca/example/MVVMbase/ViewModelBase/IWindowViewModel.cs
���usingSystem;
usingSystemWindows;
namespacePenguinMVVMBaseViewModelBase
{
<summary>
InterfaceusedbythebasicwindowviewModelstoallowviewcreationrequestsbacktotheirrelatedviews
<summary>
publicinterfaceIWindowViewModel
{
regionEvents
<summary>
EventraisedtoindicateimplementingviewModelisrequestingaview
<summary>
eventEventHandler<RequestViewArgs>ViewRequested;
<summary>
EventraisedtoindicateimplementingviewModelisrequestingamessageboxbeshown
<summary>
eventEventHandler<RequestMsgBoxArgs>MsgBoxRequested;
endregion
regionPublicMethods
<summary>
Methodcalledwhentheviewisloaded
<summary>
<paramname=sender>Thesenderobjectaspassedtotheloadedeventhandler<param>
<paramname=e>RoutedEventArgsaspassedtotheloadedeventhandler<param>
voidViewLoadedobjectsenderRoutedEventArgse;
<summary>
Methodcalledwhenarequestedviewhasclosed
<summary>
<paramname=viewModel>TheViewModeloftheclosedview<param>
<paramname=result>Returnvalueoftheview<param>
voidRequestedViewClosedIWindowViewModelviewModelboolresult;
endregion
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43